projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52af9ae
)
GtkAboutDialog: Initialize a variable
author
Matthias Clasen
<mclasen@redhat.com>
Fri, 30 Nov 2012 04:01:10 +0000
(23:01 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Fri, 30 Nov 2012 04:10:34 +0000
(23:10 -0500)
Coverity complains about it being uninitialized, otherwise.
gtk/gtkaboutdialog.c
patch
|
blob
|
history
diff --git
a/gtk/gtkaboutdialog.c
b/gtk/gtkaboutdialog.c
index 287ec9a21114c28a607beba10d6310e0c67e3cc9..7980d933e1673d300e328d5208b5247f8edfb463 100644
(file)
--- a/
gtk/gtkaboutdialog.c
+++ b/
gtk/gtkaboutdialog.c
@@
-2395,6
+2395,8
@@
create_credits_page (GtkAboutDialog *about)
gtk_widget_set_valign (grid, GTK_ALIGN_START);
gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (sw), grid);
+ row = 0;
+
if (priv->authors != NULL)
add_credits_section (about, GTK_GRID (grid), &row, _("Created by"), priv->authors);